home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / archiver / unix / zip19p1.zoo / revision.h < prev    next >
C/C++ Source or Header  |  1992-08-26  |  1KB  |  47 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly,
  4.  Kai Uwe Rommel and Igor Mandrichenko.
  5.  Permission is granted to any individual or institution to use, copy, or
  6.  redistribute this software so long as all of the original files are included
  7.  unmodified, that it is not sold for profit, and that this copyright notice
  8.  is retained.
  9.  
  10. */
  11.  
  12. /*
  13.  *  revision.h by Mark Adler.
  14.  */
  15.  
  16. #define REVISION 19
  17. #define PATCHLEVEL 1
  18. #define REVDATE "Aug 26th 1992"
  19.  
  20. /* Copyright notice for binary executables--this notice only applies to
  21.  * those (zip, zipcloak, zipsplit, and zipnote), not to this file
  22.  * (revision.h).
  23.  */
  24.  
  25. #ifndef NOCPYRT
  26. char *copyright[] = {
  27. #ifdef VMS
  28. "Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  29. "Kai Uwe Rommel and Igor Mandrichenko. Type '%s -L' for the software license.",
  30. #else
  31. "Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  32. "and Kai Uwe Rommel. Type '%s -L' for the software License.",
  33. #endif
  34. };
  35. char *disclaimer[] = {
  36. "",
  37. "Permission is granted to any individual or institution to use, copy, or",
  38. "redistribute this executable so long as it is not modified and that it is",
  39. "not sold for profit.",
  40. "",
  41. "LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE",
  42. "PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR",
  43. "IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES",
  44. "RESULTING FROM THE USE OF THIS SOFTWARE."
  45. };
  46. #endif /* !NOCPYRT */
  47.